home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / unixSyscall / RCS / ftruncate.c,v < prev    next >
Text File  |  1991-12-10  |  2KB  |  136 lines

  1. head     1.3;
  2. branch   ;
  3. access   ;
  4. symbols  sprited:1.3.1;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.3
  10. date     91.09.12.21.38.11;  author mottsmth;  state Exp;
  11. branches 1.3.1.1;
  12. next     1.2;
  13.  
  14. 1.2
  15. date     88.07.29.17.39.26;  author ouster;  state Exp;
  16. branches ;
  17. next     1.1;
  18.  
  19. 1.1
  20. date     88.06.19.14.31.19;  author ouster;  state Exp;
  21. branches ;
  22. next     ;
  23.  
  24. 1.3.1.1
  25. date     91.12.10.15.48.40;  author kupfer;  state Exp;
  26. branches ;
  27. next     ;
  28.  
  29.  
  30. desc
  31. @@
  32.  
  33.  
  34. 1.3
  35. log
  36. @ftruncate was returning Sprite ReturnStatus, not Unix errno
  37. as it's supposed to.
  38. @
  39. text
  40. @/* 
  41.  * ftruncate.c --
  42.  *
  43.  *    Procedure to map from Unix ftruncate system call to Sprite system call.
  44.  *
  45.  * Copyright 1986 Regents of the University of California
  46.  * All rights reserved.
  47.  */
  48.  
  49. #ifndef lint
  50. static char rcsid[] = "$Header: /sprite/src/lib/c/unixSyscall/RCS/ftruncate.c,v 1.2 88/07/29 17:39:26 ouster Exp Locker: mottsmth $ SPRITE (Berkeley)";
  51. #endif not lint
  52.  
  53. #include "sprite.h"
  54.  
  55. #include "compatInt.h"
  56. #include "fs.h"
  57. #include <errno.h>
  58.  
  59.  
  60. /*
  61.  *----------------------------------------------------------------------
  62.  *
  63.  * ftruncate --
  64.  *
  65.  *    Procedure to map from Unix ftruncate system call to Sprite 
  66.  *    system call.
  67.  *
  68.  * Results:
  69.  *    UNIX_SUCCESS is returned, or
  70.  *      UNIX_ERROR with errno set appropriately.
  71.  *
  72.  * Side effects:
  73.  *    None.
  74.  *
  75.  *----------------------------------------------------------------------
  76.  */
  77.  
  78. int
  79. ftruncate(fd, length)
  80.     int fd;
  81.     unsigned long length;
  82. {
  83.     ReturnStatus status = SUCCESS;
  84.  
  85.     status = Ioc_Truncate(fd, (int) length);
  86.     if (status == SUCCESS) {
  87.     return(UNIX_SUCCESS);
  88.     } else {
  89.     errno = Compat_MapCode(status);
  90.     return(UNIX_ERROR);
  91.     }
  92. }
  93. @
  94.  
  95.  
  96. 1.3.1.1
  97. log
  98. @Initial branch for Sprite server.
  99. @
  100. text
  101. @d11 1
  102. a11 1
  103. static char rcsid[] = "$Header: /sprite/src/lib/c/unixSyscall/RCS/ftruncate.c,v 1.3 91/09/12 21:38:11 mottsmth Exp $ SPRITE (Berkeley)";
  104. @
  105.  
  106.  
  107. 1.2
  108. log
  109. @Lint.
  110. @
  111. text
  112. @d11 1
  113. a11 1
  114. static char rcsid[] = "$Header: ftruncate.c,v 1.1 88/06/19 14:31:19 ouster Exp $ SPRITE (Berkeley)";
  115. d30 2
  116. a31 1
  117.  *    UNIX_SUCCESS is returned.
  118. d44 9
  119. a52 1
  120.     return(Ioc_Truncate(fd, (int) length));
  121. @
  122.  
  123.  
  124. 1.1
  125. log
  126. @Initial revision
  127. @
  128. text
  129. @d11 1
  130. a11 1
  131. static char rcsid[] = "$Header: ftruncate.c,v 1.2 87/06/25 17:20:22 brent Exp $ SPRITE (Berkeley)";
  132. d43 1
  133. a43 1
  134.     return(Ioc_Truncate(fd, length));
  135. @
  136.